home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Collection of Internet
/
Collection of Internet.iso
/
infosrvr
/
doc
/
www_talk.arc
/
000358_timbl@www3.cern.ch _Thu Nov 19 18:21:11 1992.msg
< prev
next >
Wrap
Internet Message Format
|
1992-11-30
|
3KB
Return-Path: <timbl@www3.cern.ch>
Received: from dxmint.cern.ch by nxoc01.cern.ch (NeXT-1.0 (From Sendmail 5.52)/NeXT-2.0)
id AA15756; Thu, 19 Nov 92 18:21:11 MET
Received: by dxmint.cern.ch (dxcern) (5.57/3.14)
id AA17070; Thu, 19 Nov 92 18:33:32 +0100
Received: by www3.cern.ch (NX5.67c/NX3.0S)
id AA00355; Thu, 19 Nov 92 18:29:03 +0100
Date: Thu, 19 Nov 92 18:29:03 +0100
From: Tim Berners-Lee <timbl@www3.cern.ch>
Message-Id: <9211191729.AA00355@www3.cern.ch>
Received: by NeXT.Mailer (1.87.1)
Received: by NeXT Mailer (1.87.1)
To: K.Hoadley@directory.rl.ac.uk
Subject: Re: hangs/multiple servers
Cc: www-talk@nxoc01.cern.ch
Reply-To: timbl@nxoc01.cern.ch
> Date: Thu, 19 Nov 1992 09:38:35 +0000 (GMT)
> From: Kevin Hoadley <K.Hoadley@directory.rl.ac.uk>
> The simple way to provide multiple servers would be to
> register the server name in the DNS with multiple A
> (address) records pointing to different machines. Then
> the clients could be mod'ed could try the second or third
> ... addresses if they couldn't get through to the first.
Ok, This seems a bery good idea, if that is the functionality which DNS
supports.
<practical>
Let's try it.... Anyone care to mod HTTP.c? It's not obvious from
the gethostbyname that one is allowed to refer to different
machines:
struct hostent {
char *h_name; /* official name of host */
char **h_aliases; /* alias list */
int h_addrtype; /* host address type */
int h_length; /* length of address */
char **h_addr_list; /* list of addresses from name server */
};
That look like a list of aliases for one machine, rather than a
list of machines for one alias! But maybe the reverse will work.
So all machines support char **h_addr_list rather than the older
h_addr? We can probably differentiate using #ifdef h_addr
which is set to a macro if there IS a list. I assume you need then
separate entries for the virtual duplicate node and the actual
real nodes, so that you can speak to them sepately. Is this normal
and OK?
</practical>
> How you keep info upto date accross multiple servers is
> a different matter, need some form of replication a la
> DNS zone transfers (or Quipu's extensions to X.500 ) ...
> Mind you, replication within www is a harder issue: a
> server might be sitting in front of datasets too large
> to sensibly duplicate.
>
> Kevin Hoadley, Rutherford Appleton Laboratory
>